home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / cgi-bin / parseform.rexx < prev    next >
OS/2 REXX Batch file  |  1997-06-11  |  309b  |  24 lines

  1. /* Parses test form */
  2.  
  3. options results
  4.  
  5. say "Content-Type: text/html"
  6. say ""
  7.  
  8. getvar REQUEST_METHOD
  9. method = result
  10.  
  11. getvar CONTENT_TYPE
  12. type = result
  13.  
  14. getvar CONTENT_LENGTH
  15. length = result
  16.  
  17. say "<UL>"
  18. say "<LI> method is " || method
  19. say "<LI> type is " || type
  20. say "<LI> length is " || length
  21. say "</UL>"
  22.  
  23.  
  24.